home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / demos / ewjdemo.dir / 00116.ls < prev    next >
Encoding:
Text File  |  1995-12-11  |  315 b   |  17 lines

  1. global gMovieSprite, gMovieDuration, gReturnFrame
  2.  
  3. on exitFrame
  4.   if the movieTime of sprite gMovieSprite < gMovieDuration then
  5.     if rollOver(gMovieSprite + 1) then
  6.       go(the frame + 1)
  7.       exit
  8.     else
  9.       go(the frame - 1)
  10.       exit
  11.     end if
  12.   else
  13.     delayFor(60)
  14.     go(gReturnFrame)
  15.   end if
  16. end
  17.